home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MS AOE.xpl < prev    next >
Text File  |  2000-11-12  |  2KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="2"
  4. "UIPATH"="Program Options\Games\Age of Empires"
  5. "NAME"="Age of Empires Tweaks"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.04"
  8. "TEXT 1"="Enable Tweaks"
  9. "TEXT 2"="Restore Default Settings"
  10. "DESCRIPTION 1"="Click "Enable Tweaks" to activate the "MFill NoStartup Msynch" tweaks in AOE games played over the Internet via the Internet Gaming Zone."
  11. "DESCRIPTION 2"="Click "Restore Default Settings" to undo the changes and revert to the default configuration."
  12. "DESCRIPTION 3"=" "
  13. "DESCRIPTION 4"=""MFill" fixes and prevents horizontal line problems and black screen areas on some video cards.  "MSynch" fixes lock-up problems that occur on some soundcards."
  14. "DESCRIPTION 5"=""NoStartUp" skips the start up video clip which becomes annoying since it opens each time by default."
  15. "DESCRIPTION 6"="If you wish for these items to work for non Internet Gaming Zone AOE games, you must manually add the options to your Start Menu shortcut per the AOE ReadMe file."
  16. "AUTHOR"="CptSiskoX"
  17. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  18. "COPYRIGHT"="Copyright (C) Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20. "COMMENT 2"="Age of Empires (C) by Microsoft"
  21.  
  22.  
  23. sP="HKLM\Software\Microsoft\DirectPlay\Applications\Age of Empires\"
  24. sV="CommandLine" 'str
  25. sV_Better="lobby MFill NoStartup Msynch"
  26. sV_Normal="lobby"
  27.  
  28.  
  29. 'Called when the Plugin is started
  30. SUB Plugin_Initialize
  31.  If RegPathExists(sP)=false then Disable()
  32. END SUB
  33.  
  34. 'Called when the Plugin should validate the Data the user has entered
  35. SUB Plugin_CheckData(ElementIndex)
  36. END SUB
  37.  
  38. 'Called when the Plugin should apply the changes
  39. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  If ElementIndex=1 then 
  41.     Call RegWriteValue(sP & sV,sV_Better,1)
  42.     Call MsgInformation("Tweaks enabled")
  43.  else
  44.     Call RegWriteValue(sP & sV,sV_Normal,1)
  45.     Call MsgInformation("Default settings restored")
  46.  end if
  47.    
  48. END SUB
  49.  
  50. 'Called when the Plugin is about to be removed from memory
  51. SUB Plugin_Terminate
  52. END SUB
  53.